home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / mpfeel.lha / MPFeel / Plurals / mp_pmem_mgmt.h < prev    next >
C/C++ Source or Header  |  1992-05-26  |  806b  |  51 lines

  1. /*
  2.  *    Processor/Memory Management
  3.  *
  4.  *    Author:    S.C.Merrall
  5.  *
  6.  *    File:    mp_pmem_mgmt.h
  7.  *
  8.  *    Contents:    
  9.  *
  10.  *    Description:    
  11.  *
  12.  *    Change History:
  13.  *
  14.  *    Date   Name Comment
  15.  *    -------- ---- -------
  16.  *    26:05:92 SCM  Created
  17.  *    14:02:91 SCM  Coded in terms of mp_objects via MP_Handles
  18.  *    18:02:91 SCM  Proper naming convention
  19.  *
  20.  */
  21.  
  22.  
  23. /*  Memory/Processor Management Parameters */
  24. /*  ================ ========== ========== */
  25.  
  26. extern plural natural memory[];        /* memory visible everywhere */
  27.  
  28. extern natural handle_space;        /* need both so that we can tell */
  29. extern plural natural heap_space;      /* either are exhausted         */
  30.  
  31. /*  Macros */
  32. /*  ====== */
  33.  
  34.  
  35.  
  36. /*  Functions */
  37. /*  ========= */
  38.  
  39.  
  40. #ifdef __STDC__
  41.  
  42. int find_slice( int type, int size, int start );
  43.  
  44. #else
  45.  
  46. int find_slice();
  47.  
  48. #Endif
  49.  
  50.  
  51.